home *** CD-ROM | disk | FTP | other *** search
- G4C
- ; $VER: FTPDIR.func.1 Rev.014 by Juan Manuel Wehrli 1999 - 2000
- WINBIG -1 -1 150 20 ""
- WinType 00001000
- WinOnMouse 5 5
- Winout "NIL:"
- WinBackground IMAGE BG 0
-
- xOnLoad
- GuiOpen #This
-
- xOnOpen
- Update #This 1 "$*select1"
- select = $*select1
-
- xTextIn 0 0 150 20 "" select "" 255
- GadID 1
- GadFont "xHelvetica.font" "11" 000
- *select1 = "$select"
- if $select != ""
- LVUse "FTPDIR" 1
- LVSearch "$*select1" CI first
- if $$SEARCH.POS != ""
- LVGO #$$lv.line
- LVMulti ON
- SetVar count "1"
- while $$SEARCH.POS != ""
- LVSearch "$*select1" CI next
- if $$lv.line != ""
- LVGO #$$lv.line
- LVMulti ON
- COUNTER count INC 1
- endif
- endwhile
- COUNTER count DEC 1
- LVGO First
- LVMulti OFF
- endif
- endif
- GuiClose #This
- if $count = 1
- Update "Infobar" 1 "Es wurde $count Eintrag selektiert"
- elseif $count = ""
- Update "Infobar" 1 "Es wurden keine Einträge selektiert"
- else
- Update "Infobar" 1 "Es wurden $count Einträge selektiert"
- endif
- GuiQuit #This
-
-